home *** CD-ROM | disk | FTP | other *** search
/ Stone Design / Stone Design.iso / Stone_Friends / Wave / WavesWorld / Source / IBPalettes / WW3DKit / RIBPointsGeneralPolygons.h < prev    next >
Encoding:
Text File  |  1995-03-22  |  859 b   |  30 lines

  1. // copyright 1993 Michael B. Johnson; some portions copyright 1994, MIT
  2. // see COPYRIGHT for reuse legalities
  3. //
  4.  
  5. #import <appkit/appkit.h>
  6.  
  7. #import "RIBCommand.h"
  8.  
  9. @interface RIBPointsGeneralPolygons:RIBCommand
  10. {
  11.   RtInt  nPolys, *nLoops, *nVertices, *vertices;
  12.   char   *nPolysBuf, *nVerticesLengthBuf, *cntBuf;
  13. }
  14.  
  15. - setNPolys:(RtInt)newNPolys nLoops:(RtInt *)newNLoops nVertices:(RtInt *)newNVertices vertices:(RtInt *)newVertices 
  16.      n:(int)newN tokens:(RtToken *)newTokens parms:(RtPointer *)newParms archiveVector:(char **)newArchiveVector
  17.      printfTypeVector:(int *)newPrintfTypeVector printfNVector:(int *)newPrintfNVector;
  18.  
  19. - setNPolys:(RtInt)newNPolys;
  20. - setNLoops:(RtInt *)newNLoops;
  21. - setNVertices:(RtInt *)newNVertices;
  22. - setVertices:(RtInt *)newVertices;
  23.  
  24. - (RtInt)nPolys;
  25. - (RtInt *)nLoops;
  26. - (RtInt *)nVertices;
  27. - (RtInt *)vertices;
  28.  
  29. @end
  30.